home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / gopher / Unix / gopher+1.2b4 / gopherd / openers.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-24  |  1.3 KB  |  51 lines

  1. /********************************************************************
  2.  * lindner
  3.  * 3.2
  4.  * 1993/03/24 20:29:45
  5.  * /home/mudhoney/GopherSrc/CVS/gopher+/gopherd/openers.h,v
  6.  * Exp
  7.  *
  8.  * Paul Lindner, University of Minnesota CIS.
  9.  *
  10.  * Copyright 1991, 1992 by the Regents of the University of Minnesota
  11.  * see the file "Copyright" in the distribution for conditions of use.
  12.  *********************************************************************
  13.  * MODULE: openers.c
  14.  * Secure file access routines.
  15.  *********************************************************************
  16.  * Revision History:
  17.  * openers.h,v
  18.  * Revision 3.2  1993/03/24  20:29:45  lindner
  19.  * Added Dirent.h, needed for those darn directory routines.
  20.  *
  21.  * Revision 3.1.1.1  1993/02/11  18:02:52  lindner
  22.  * Gopher+1.2beta release
  23.  *
  24.  * Revision 1.1  1992/12/10  23:13:27  lindner
  25.  * gopher 1.1 release
  26.  *
  27.  *
  28.  *********************************************************************/
  29.  
  30. /*
  31.  * Declarations for openers.c routines.
  32.  */
  33.  
  34. #include <stdio.h>
  35. #include "Dirent.h"
  36.  
  37. /* restricted versions */
  38. extern    int    ropen();
  39. extern    FILE    *rfopen();
  40. extern  FILE    *rfopenz();
  41. extern    int    rstat();
  42. extern    DIR    *ropendir();
  43. extern    int    rchdir();
  44.  
  45. /* unrestricted versions */
  46. extern    int    uopen();
  47. extern    FILE    *ufopen();
  48. extern    int    ustat();
  49. extern    DIR    *uopendir();
  50. extern    int    uchdir();
  51.